iT邦幫忙

1

30天程式語言研究

  • 分享至 

  • xImage
  •  

今天是30天程式語言研究的第二十三天,由於資料庫開發的部分我是負責前端所以想說順便多練習一下其他開發前端的語言,就選擇了javascript當第二門語言。

網址:https://www.youtube.com/watch?v=yZwlW5INhgk&ab_channel=GrandmaCan-%E6%88%91%E9%98%BF%E5%AC%A4%E9%83%BD%E6%9C%83

今天主要是如何使用數字和數字的用法

筆記:

如何使用數字,數字的用法

document.write(-6.2374);
document.write(2+3*5);//一樣有先乘除後加減
document.write((2+3)5);
var number = 6
document.write((2+3) * number);
document.write(8%5);// %代表取餘數 =3
document.write(Math.abs(number)); // 把number取絕對值
document.write(Math.max(29,35,58,88,999,215,number));//找最大值 =999
document.write(Math.min(29,35,58,88,999,215,number));//找最小值 =6
document.write(Math.round(2.5));//做四捨五入 =3
document.write(Math.pow(2,3));//次方 2的3次方= 8
document.write(Math.sqrt(36));//開根號 =6
document.write(Math.random());//給0~1隨機一個數 ex 0.5299203225183229
document.write(Math.round(Math.random() * 10));//想要得到0~10就
10,要整數就用round


圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言